home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_m_p / phello.zip / HELLOCRT.PAS < prev    next >
Pascal/Delphi Source File  |  1991-04-25  |  446b  |  16 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal for Windows                     }
  4. {   WinCrt Hello Windows application             }
  5. {   Copyright (c) 1991 by Borland International  }
  6. {                                                }
  7. {************************************************}
  8.  
  9. program HelloCRT;
  10.  
  11. uses WinCrt;
  12.  
  13. begin
  14.   writeLn('Hello, WinCrt!');
  15. end.
  16.